home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / HAAS.M4 < prev    next >
Text File  |  1996-04-01  |  4KB  |  147 lines

  1. name HAAS 4 axis
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. g >2 G
  9. X ->3.>4
  10. Y ->3.>4
  11. Z ->3.>4
  12. A ->3.>4 Limit -8000 8000
  13. I ->3.>4
  14. J ->3.>4
  15. K ->3.>4
  16. Q ->3.>4
  17. R ->3.>4
  18. P >40
  19. F >3.1
  20. H >2
  21. D >2
  22. T >2
  23. M >2
  24. S >4
  25.  
  26. ModalLetters X Y Z F A                # List of letters that are modal    
  27.  
  28. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  29.  
  30. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  31. First#? N                             # Y or N  'Output 1st sequence no.  
  32. Last#? N                              # Y or N  'Output last sequence no. 
  33.  
  34. HCode X                               # X or X U  'Horizontal char.       
  35. VCode Y                               # Y or Y V  'Vertical char.         
  36. Dcode Z                               # Depth char.                       
  37. FeedCode F                            # Feed rate char.                   
  38.  
  39. Comment ( )                           # Begin End comment char.           
  40.  
  41. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  42. Coolant 8 9 7                         # On, Off & Mist m codes            
  43. DComp 41 42 40                        # Left, Right & Cancel m codes      
  44. LComp 43 49                           # On & Off codes                    
  45.  
  46. Feed G1                             # Linear move                       
  47. Rapid G0                            # Rapid positioning word            
  48. Cw G2                               # Circular move clockwise           
  49. Ccw G3                              # Circular move counter clockwise   
  50.  
  51. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  52.  
  53. CtrCode I J                           # I J or R or I J K L               
  54. Helical? Y
  55.  
  56. Spaces? Y                             # Y or N  'Spaces between words     
  57.  
  58. Incremental? N                        # Y or N  'Inc or abs output        
  59. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  60. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  61.  
  62. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  63.  
  64. Drill                                 # Drilling canned/manual cycle      
  65. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  66. end cancel
  67.  
  68. Peck                                  # Pecking canned/manual cycle       
  69. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  70. end cancel
  71.  
  72. Tap                                   # Tapping canned/manual cycle       
  73. G84 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  74. end cancel
  75.  
  76. LTap                                  # Left handed tapping cycle         
  77. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  78. end cancel
  79.  
  80. Ream                                  # Reaming canned/manual cycle       
  81. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  82. end cancel
  83.  
  84. Bore                                  # Boring canned/manual cycle        
  85. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  86. end cancel
  87.  
  88. Back                                  # Back boring canned/manual cycle   
  89. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  90. end cancel
  91.  
  92. Cancel                                # Cancel a canned/manual cycle      
  93. G80
  94. end
  95.  
  96. Index X                               # Index the rotary table            
  97. G0 G49 G90 Z0
  98. G[Work] X[H] Y[V] A[Rotangle]
  99. G43 Z[D] H[Lcomp] M[Cool]
  100. End
  101.  
  102. UnWind                                # Unwind the rotary table           
  103. G0 G49 G90 Z0
  104. A0
  105. G43 Z[D] H[Lcomp] M[Cool]
  106. G0 X[LastH] Y[LastV] A[LastRotAng]
  107. G1 Z[LastD]
  108. End
  109.  
  110. StartCode                             # Start of the program              
  111. %0
  112. O[Program#]
  113. G90 G80 G40 G17
  114. End
  115.  
  116. 1stToolChange                         # First tool change                 
  117. T[Tool] M6
  118. M[Direct] S[Speed]
  119. G0 G[Work] X[H] Y[V] A[Rotangle]
  120. G43 Z[D] H[Lcomp]
  121. M[Cool]
  122. End
  123.  
  124. Infeed                                # Enable cutter comp                
  125. G[Side] X[H] Y[V] D[DComp] A[Rotangle] F[FRate]
  126. end
  127.  
  128. Outfeed                               # Disable cutter comp               
  129. G1 G40 X[H] Y[V]
  130. Z[D]
  131. end
  132.  
  133. ToolChange                            # Secondary tool changes            
  134. G0 G49 Z0 M9
  135. N[Block] T[Tool] M6
  136. G0 G90 G[Work] X[H] Y[V] S[Speed] M[Direct] A[Rotangle]
  137. G43 Z[D] H[Lcomp] M[Cool]
  138. End
  139.  
  140. EndCode                               # End of the program                
  141. G0 G49 G90 Z0 M9
  142. G28 g91 Y0 Z0 A0
  143. M30
  144. %0
  145. End
  146.  
  147.